home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / image / eimg202a.zip / DEMO / PROJECT1.DPR next >
Text File  |  1997-01-25  |  268b  |  17 lines

  1. program Project1;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'UNIT1.PAS' {Form1},
  6.   EnhImage in '\Delphi 2.0\LIB\EnhImage.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   {$IFNDEF VER80 }
  12.   Application.Initialize;
  13.   {$ENDIF }
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.
  17.